home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2004 #2
/
Amiga Plus CD - 2004 - No. 02.iso
/
AmiSoft
/
Misc
/
emu
/
Wzonka-Lad.lha
/
Wzonka-Lad
/
src
/
routines
/
align!d0_32.S
next >
Wrap
Text File
|
1997-05-09
|
384b
|
13 lines
;««««««««««««««««««««««««««««««««««»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»
; align the register d0 by thirtytwo
;««««««««««««««««««««««««««««««««««»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»
align_d0: move.l d0,d1 ;align the memory.
and.l #%11111,d1
beq.s align_done
eor.b #%11111,d1
add.l d1,d0
addq.l #1,d0 ;aligned by thirtytwo.
align_done: rts ;return.